C# |
---|
public static Int16 GetInt16(Object value) |
C# |
---|
using LJCNetCommon; // Gets a short value from an object. private static void GetInt16() { // Simulates an Object value like that received from a DataTable. short setup = 3; object obj = setup; // Gets a short value from an object. short value = NetCommon.GetInt16(obj); } |